How to align Text in React Material UI?
The Typography component of Material UI is used to present your text and content as clearly and efficiently as possible....
read more
8 Best Javascript Game Engines
JavaScript is a cross-platform and interpreted scripting language. It is known for the development of web pages. Also, many non-browser environments use it. JavaScript can be used for Client-side developments as well as Server-side developments. In this article, we will be exploring the top 8 hand-picked JavaScript game engines which every JS developer should know about....
read more
Basic Authentication in Node.js using HTTP Header
Authentication of the client is the first step before starting any Application. The basic authentication in the Node.js application can be done with the help express.js framework. Express.js framework is mainly used in Node.js application because of its help in handling and routing different types of requests and responses made by the client using different Middleware....
read more
Difference between First-Class and Higher-Order Functions in JavaScript
Understanding the difference between first-class and higher-order functions in JavaScript is really important. These are big concepts in programming, especially in the kind of coding used for making websites. This article is all about explaining what they are, how they are used, and why they are so important....
read more
How to create a working slider using HTML and CSS ?
A slider is a sequence of frames that can be navigated in order. Firstly, you need to input the basic HTML code and then add radio buttons for the frames using the “type” attribute as “radio”. Then, design each frame in sequence. You can adjust the frames’ positions using “margin-left” and navigate them using both radio buttons and control labels....
read more
How to programmatically fire a click event for a file input element in JavaScript ?
In this article, we will learn how to programmatically fire click events on the input file element....
read more
How to switch the language of the page using JavaScript ?
In this article, we will describe the method to switch between languages of a page depending upon the choice of the user....
read more
How to make a word count in textarea using JavaScript ?
Counting words may be useful in scenarios where the user is recommended to enter a certain number of words and the word counter can keep track of the same....
read more
Build a Grocery Store Web App using PHP with MySQL
In this article, we are going to build a Grocery Store Web Application using PHP with MySQL. In this application, we can add grocery items by their name, quantity, status (pending, bought, not available), and date. We can view, delete and update those items. There will be a date filtering feature where we can view the grocery items according to the dates....
read more
How to display warning before leaving the web page with unsaved changes using JavaScript ?
To display a warning before leaving a web page with unsaved changes, you can use the beforeunload event in JavaScript....
read more
Libuv in Node.js
Node.js relies on various dependencies under the hood for providing various features....
read more
Difference between module.exports and exports in Node.js
The module is a plain JavaScript Object representing the current module. It is local to each module and also it is private. It has exports property which is a plain JavaScript variable, set to module.exports. At the end of the file, Node.js return module.exports to the required function....
read more